home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / macros / latex209 / contrib / rcs / src / Makefile < prev    next >
Makefile  |  1993-11-02  |  706b  |  41 lines

  1. # $Id: Makefile,v 1.4 1993/11/03 20:14:05 schrod Exp $
  2. #----------------------------------------------------------------------
  3.  
  4.  
  5. SHELL=/usr/local/bin/bash
  6.  
  7.  
  8. .SUFFIXES: .doc .sty
  9.  
  10. .doc.sty:
  11.     doc2tex $*.doc $*.sty
  12.  
  13.  
  14. all:: rcs.sty
  15.  
  16.  
  17. dvi::
  18.     latex rcs.doc
  19.     latex rcs-user
  20.     latex rcs-conf
  21.  
  22.  
  23. # management tasks
  24.  
  25. setup::
  26.     test -d style  ||  ln -s ../style .
  27.  
  28. export::
  29.     @if [ -L ../rcs.sty ] ; \
  30.        then    echo Cannot make export after setup was made. >&2 ; \
  31.         exit 1 ; \
  32.     fi
  33.     ln -s /common/tex+mf/tex/latex/{progltx,alltt,fullpage}.sty .
  34.     ln -s /common/tex+mf/tex/inputs/logos.sty .
  35.     ln -s /users/schrod/tex/macros/a4-9.sty .
  36.     $(MAKE) all
  37.     $(MAKE) dvi
  38.     latex rcs.doc
  39.     mv rcs.sty rcs-user.dvi ..
  40.     rm -f *.aux *.log
  41.